home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Demos / Delphi.Net / VCL / WinCube / WincubVCL.dpr < prev   
Encoding:
Text File  |  2004-10-22  |  1.4 KB  |  43 lines

  1. (*=====================================================================
  2.   Project:   WinCubVCL.bdsproj
  3.  
  4.   File:      WinCubVCL.bdsproj
  5.  
  6.   Summary:
  7.              WinCubVCL is a Delphi implementation of the dotNETCub
  8.              project, which is a simple game for your fun.
  9.                    On other hand it could demonstrate creating
  10.                    VCL-objects in run time and using them.
  11.  
  12. ---------------------------------------------------------------------
  13.   This file is submitted by:
  14.  
  15.      endresy@axelero.hu
  16.      Endre I. Simay,
  17.      Hungary
  18.  
  19.  
  20. THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  21. KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  22. IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  23. PARTICULAR PURPOSE.
  24. =====================================================================*)
  25.  
  26. program WincubVCL;
  27.  
  28. {%DotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Windows.Forms.dll'}
  29. {%DotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.dll'}
  30. {%DotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Data.dll'}
  31. {%DotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.XML.dll'}
  32.  
  33. uses
  34.   SysUtils,
  35.   Forms,
  36.   WincubVCL_ in 'WincubVCL_.pas' {WincubVCL_.TForm1: Borland.Vcl.Forms.TForm};
  37.  
  38. begin
  39.   Application.Initialize;
  40.   Application.CreateForm(TForm1, Form1);
  41.   Application.Run;
  42. end.
  43.